|
Eclipse JDT Pre-release 3.0 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WorkingCopyOwner | |
org.eclipse.jdt.core | The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program. |
org.eclipse.jdt.core.dom | The Java DOM is the set of classes that model the source code of a Java program as a structured document. |
org.eclipse.jdt.core.eval | Provides support for the evaluation of code snippets in a scrapbook or inside the debugger. |
org.eclipse.jdt.core.search | Provides support for searching the workspace Java elements that match a particular description. |
Uses of WorkingCopyOwner in org.eclipse.jdt.core |
Methods in org.eclipse.jdt.core that return WorkingCopyOwner | |
WorkingCopyOwner |
ICompilationUnit.getOwner()
Returns the working copy owner of this working copy. |
Methods in org.eclipse.jdt.core with parameters of type WorkingCopyOwner | |
static IJavaElement |
JavaCore.create(String handleIdentifier,
WorkingCopyOwner owner)
Returns the Java model element corresponding to the given handle identifier generated by IJavaElement.getHandleIdentifier() , or
null if unable to create the associated element. |
static ICompilationUnit[] |
JavaCore.getWorkingCopies(WorkingCopyOwner owner)
Returns the working copies that have the given owner. |
void |
IType.codeComplete(char[] snippet,
int insertion,
int position,
char[][] localVariableTypeNames,
char[][] localVariableNames,
int[] localVariableModifiers,
boolean isStatic,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Do code completion inside a code snippet in the context of the current type. |
ITypeHierarchy |
IType.newSupertypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing this type and all of its supertypes, considering types in the working copies with the given owner. |
ITypeHierarchy |
IType.newTypeHierarchy(IJavaProject project,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing this type, all of its supertypes, and all its subtypes in the context of the given project, considering types in the working copies with the given owner. |
ITypeHierarchy |
IType.newTypeHierarchy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for this type containing this type, all of its supertypes, and all its subtypes in the workspace, considering types in the working copies with the given owner. |
String[][] |
IType.resolveType(String typeName,
WorkingCopyOwner owner)
Resolves the given type name within the context of this type (depending on the type hierarchy and its imports) and using the given owner's working copies, considering types in the working copies with the given owner. |
ICompilationUnit[] |
IPackageFragment.getCompilationUnits(WorkingCopyOwner owner)
Returns all of the compilation units in this package fragment that are in working copy mode and that have the given owner. |
IJavaElement |
IJavaProject.findElement(IPath path,
WorkingCopyOwner owner)
Returns the IJavaElement corresponding to the given
classpath-relative path, or null if no such
IJavaElement is found. |
IType |
IJavaProject.findType(String fullyQualifiedName,
WorkingCopyOwner owner)
Returns the first type found following this project's classpath with the given fully qualified name or null if none is found. |
IType |
IJavaProject.findType(String packageName,
String typeQualifiedName,
WorkingCopyOwner owner)
Returns the first type found following this project's classpath with the given package name and type qualified name or null if none is found. |
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for all types in the given region, considering subtypes within that region and considering types in the working copies with the given owner. |
ITypeHierarchy |
IJavaProject.newTypeHierarchy(IType type,
IRegion region,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Creates and returns a type hierarchy for the given type considering subtypes in the specified region and considering types in the working copies with the given owner. |
ICompilationUnit |
ICompilationUnit.findWorkingCopy(WorkingCopyOwner owner)
Finds the working copy for this compilation unit, given a WorkingCopyOwner . |
ICompilationUnit |
ICompilationUnit.getWorkingCopy(WorkingCopyOwner owner,
IProblemRequestor problemRequestor,
IProgressMonitor monitor)
Returns a shared working copy on this compilation unit using the given working copy owner to create the buffer, or this compilation unit if it is already a non-primary working copy. |
void |
ICompilationUnit.reconcile(boolean forceProblemDetection,
WorkingCopyOwner owner,
IProgressMonitor monitor)
Reconciles the contents of this working copy, and sends out a Java delta notification indicating the nature of the change of the working copy since the last time it was either reconciled or made consistent (see IOpenable#makeConsistent() ). |
void |
ICodeAssist.codeComplete(int offset,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Performs code completion at the given offset position in this compilation unit, reporting results to the given completion requestor. |
IJavaElement[] |
ICodeAssist.codeSelect(int offset,
int length,
WorkingCopyOwner owner)
Returns the Java elements correspondiing to the given selected text in this compilation unit. |
ICompilationUnit |
IClassFile.getWorkingCopy(WorkingCopyOwner owner,
IProgressMonitor monitor)
Returns a working copy on the source associated with this class file using the given owner to create the buffer, or null if there is no source associated
with the class file. |
Uses of WorkingCopyOwner in org.eclipse.jdt.core.dom |
Methods in org.eclipse.jdt.core.dom with parameters of type WorkingCopyOwner | |
static CompilationUnit |
AST.parseCompilationUnit(ICompilationUnit unit,
boolean resolveBindings,
WorkingCopyOwner owner)
Parses the source string of the given Java model compilation unit element and creates and returns a corresponding abstract syntax tree. |
static CompilationUnit |
AST.parseCompilationUnit(IClassFile classFile,
boolean resolveBindings,
WorkingCopyOwner owner)
Parses the source string corresponding to the given Java class file element and creates and returns a corresponding abstract syntax tree. |
static CompilationUnit |
AST.parseCompilationUnit(char[] source,
String unitName,
IJavaProject project,
WorkingCopyOwner owner)
Parses the given string as the hypothetical contents of the named compilation unit and creates and returns a corresponding abstract syntax tree. |
static CompilationUnit |
AST.parsePartialCompilationUnit(ICompilationUnit unit,
int position,
boolean resolveBindings,
WorkingCopyOwner owner)
/** Parses the source string of the given Java model compilation unit element and creates and returns an abridged abstract syntax tree. |
Uses of WorkingCopyOwner in org.eclipse.jdt.core.eval |
Methods in org.eclipse.jdt.core.eval with parameters of type WorkingCopyOwner | |
void |
IEvaluationContext.codeComplete(String codeSnippet,
int position,
ICompletionRequestor requestor,
WorkingCopyOwner owner)
Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor. |
IJavaElement[] |
IEvaluationContext.codeSelect(String codeSnippet,
int offset,
int length,
WorkingCopyOwner owner)
Resolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet. |
Uses of WorkingCopyOwner in org.eclipse.jdt.core.search |
Methods in org.eclipse.jdt.core.search with parameters of type WorkingCopyOwner | |
static IJavaSearchScope |
SearchEngine.createHierarchyScope(IType type,
WorkingCopyOwner owner)
Returns a java search scope limited to the hierarchy of the given type. |
Constructors in org.eclipse.jdt.core.search with parameters of type WorkingCopyOwner | |
SearchEngine(WorkingCopyOwner workingCopyOwner)
Creates a new search engine with the given working copy owner. |
|
Eclipse JDT Pre-release 3.0 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |